body {
  background: linear-gradient(135deg, #fff0f5, #ffe6f0);
  font-family: Arial, sans-serif;
  margin: 0;
}

.page-container {
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  border-left: 8px solid #e91e63;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.page-container h2 {
  color: #e91e63;
  text-align: center;
  margin-bottom: 20px;
}

.cards-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card-item {
  background: linear-gradient(180deg, #ffe6f0, #ffcce0);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.card-item:hover {
  transform: translateY(-6px);
  background: #ffb3d9;
}

.card-item h3 { color: #ad1457; }

.benefits {
  background: #ffe6f0;
  border-left: 4px solid #e91e63;
  padding: 20px;
  border-radius: 8px;
}

.benefits h3 { color: #ad1457; }

.btn-atencion {
  display: inline-block;
  padding: 12px 24px;
  background: #e91e63;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn-atencion:hover {
  background: #ad1457;
}
